home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000165_news@columbia.edu_Tue Jun 20 19:04:18 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25865
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Jun 1995 15:04:22 -0400
  3. Received: by apakabar.cc.columbia.edu id AA10008
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Jun 1995 15:04:20 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc,comp.dcom.modems
  8. Subject: Re: Looking for a good dialer (kermit script)
  9. Date: 20 Jun 1995 19:04:18 GMT
  10. Organization: Columbia University
  11. Lines: 45
  12. Message-Id: <3s763i$9om@apakabar.cc.columbia.edu>
  13. References: <3s5l32$dj4@agate.berkeley.edu> <3s6f85$6vq@apakabar.cc.columbia.edu> <3s6msh$rng@agate.berkeley.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Xref: news.columbia.edu comp.protocols.kermit.misc:3001 comp.dcom.modems:98593
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <3s6msh$rng@agate.berkeley.edu>,
  19. Ramon F Herrera <herrera@canaima.ME.Berkeley.EDU> wrote:
  20. : Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  21. : : In article <3s5l32$dj4@agate.berkeley.edu>,
  22. : : Ramon F Herrera <herrera@canaima.ME.Berkeley.EDU> wrote:
  23. : : >Can somebody send me -or point me in the right direction- a good,
  24. : : >solid, kermit script that performs dialing into an Internet Service
  25. : : >Provider?
  26. : : >
  27. : : There are many different Kermit programs on many different platforms.
  28. : : Which one are you talking about?  What kind of modem are you dialing?
  29. : : And you also want it to log you in automatically?
  30. : I am using C-Kermit on an IBM RS/6000 running AIX 3.2.4
  31. : The modem is a Motorola FasTalk (14.4, Hayes compatible) but
  32. : it will probably be changed by Telebit TeleBlazer V.34.
  33. : The answering node is a cisco router that supports SLIP and
  34. : assigns IP addresses dynamically, and it would be nice if I
  35. : can get a script that will log me in automatically and grab
  36. : the assigned IP address.
  37. Let's go into greater detail offline.  But for mass consumption:
  38. there is no standard for the messages that come from terminal
  39. servers when you make SLIP or PPP connections to them, so there
  40. is no single Kermit script that can be used in all situations.
  41. You have to figure out how to capture the IP address from the
  42. terminal server's message, using the techniques described in the
  43. manual (OUTPUT, INPUT, string functions, etc).
  44.  
  45. Presumably all you want to do at this point is hand the
  46. connection off to your system's SLIP driver and then use your
  47. regular TCP/IP programs (including Kermit, of course, but this
  48. time with its TELNET command, rather than SET LINE) over the
  49. SLIP connection.  I'm not sure what the procedure for this
  50. "handing off" would be in AIX, but in general it's a bit tricky
  51. in UNIX getting two processes to share the same tty device.
  52.  
  53. In any case, another hint is to see if you can get your network
  54. administrators to install BOOTP service in the terminal server.
  55. In that case you don't need to parse the IP address from the
  56. terminal server's message and then install it on your system --
  57. you just make the SLIP connection and then tell you system to
  58. issue a BOOTP request for its IP address and related parameters.
  59.  
  60. - Frank